DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing Namespace / Index<T,TKey> Class / KeySelector Property

In This Topic
    KeySelector Property (Index<T,TKey>)
    In This Topic
    Gets the expression used to obtain key value from an element of the indexed collection.
    Syntax
    'Declaration
     
    Public Shadows ReadOnly Property KeySelector As Expression(Of Func(Of T,TKey))
    public new Expression<Func<T,TKey>> KeySelector {get;}

    Property Value

    An expression calculating the key value from an item (element of the collection). Typically, this is a field or a property in the item class, although more complex expressions can also be used.
    See Also